home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / dev / lang / pcq12b.lzh / Include / Utils / MathTransUtils.i < prev    next >
Text File  |  1990-08-27  |  499b  |  22 lines

  1. {
  2.     MathTransUtils.i for PCQ Pascal
  3.  
  4.     A few routines to make using the MathTrans library
  5.     a little easier.  OpenMathTrans attempts to open the
  6.     library, and returns TRUE if nothing went wrong.
  7.     CloseMathTrans is the same as CloseLibrary(...), but
  8.     FlushMathTrans will close the library AND cause it to
  9.     be removed from memory, if no one else is currently
  10.     using it.
  11. }
  12.  
  13.  
  14. Function OpenMathTrans : Boolean;
  15.     External;
  16.  
  17. Procedure CloseMathTrans;
  18.     External;
  19.  
  20. Procedure FlushMathTrans;
  21.     External;
  22.